home *** CD-ROM | disk | FTP | other *** search
- This is the README.1ST file for DJGPP Version 2.00
-
- Status and other information (online docs, FAQ, mail archives) are
- made available through the djgpp web pages at http://www.delorie.com/.
- Discussion is through the djgpp news group (comp.os.msdos.djgpp) and
- djgpp mailing list (subscribe through listserv@delorie.com). Look on
- the web page for information on the latest versions.
-
- Version information is in manifest/*.ver within each zip. Contents
- are in manifest/*.mft in each zip.
-
-
- THE DISTRIBUTION
- ----------------
-
- The 'b' zips include online documentation. At the time of writing
- this file, the various packages are:
-
- v2/
- djdev200 DJGPP V2 Development Kit and Runtime
- djlsr200 DJGPP V2 Base Library Sources
- djtst200 DJGPP V2 Test Programs
- djcrx200 DJGPP V2 For Building a Cross-to-DOS Compiler
-
- v2gnu/
- bnu252b GNU binutils 2.5.2 for DJGPP V2
- bnu252s GNU binutils 2.5.2 sources
- bsn124b GNU bison 1.24 for DJGPP V2
- bsn124s GNU bison 1.24 sources
- dif271b GNU diff 2.7.1 for DJGPP V2
- dif271s GNU diff 2.7.1 sources
- find41b GNU findutils 4.1 for DJGPP V2
- find41s GNU findutils 4.1 sources
- flx252b GNU Flex 2.5.2 for DJGPP V2
- flx252s GNU Flex 2.5.2 sources
- gcc272b GNU GCC 2.7.2 for DJGPP V2
- gcc272s GNU GCC 2.7.2 sources
- gdb412b GNU Debugger 4.12 for DJGPP V2
- gdb412s GNU Debugger 4.12 sources
- gpp272b GNU G++ 2.7.2 for DJGPP V2 (no libs)
- grep20b GNU grep 2.0 for DJGPP V2
- grep20s GNU grep 2.0 sources
- gzp124b GNU gzip 1.2.4 for DJGPP V2
- gzp124s GNU gzip 1.2.4 sources
- lgp271b GNU libg++ 2.7.1 for DJGPP V2
- lgp271s GNU libg++ 2.7.1 sources
- mak373b GNU Make 3.73 for DJGPP V2
- mak373s GNU Make 3.73 sources
- obc272b GNU ObjC 2.7.2 for DJGPP V2
- pat21b GNU patch 2.1 for DJGPP V2
- pat21s GNU patch 2.1 sources
- sed118b GNU sed 1.18 for DJGPP V2
- sed118s GNU sed 1.18 sources
- txi360b GNU texinfo 3.6 for DJGPP V2
- txi360s GNU texinfo 3.6 sources
-
- v2tk/
- bcc2grx Borland GUI to GRX interface for DJGPP V2
- grx20 GRX 2.0 Graphics Library for DJGPP V2
-
- v2misc/
- wmemu2b WM's 387 emulator binaries for DJGPP V2
- wmemu2s WM's 387 emulator sources for DJGPP V2
-
-
- GETTING STARTED
- ---------------
-
- To build C programs, you'll need djdev200.zip, gcc272b.zip, and
- bnu252b.zip. For C++, add gpp272b.zip and lgp271b.zip. To read the
- online manuals, add txi360b.zip and run "info".
-
- After unzipping the zip files in, say, C:\DJGPP, set the DJGPP
- environment variable to point the to C:\DJGPP\DJGPP.ENV and add
- C:\DJGPP\BIN to your PATH, like this (in autoexec.bat):
-
- set DJGPP=C:\DJGPP\DJGPP.ENV
- set PATH=%PATH%;C:\DJGPP\BIN
-
- To compile a C program, use a command like this:
-
- gcc myfile.c -o myfile.exe -lm
-
- The -lm links in the lib/libm.a library (trig math) if needeed. Link
- order is significant. C++ libraries are -lgpp, -lstdcxx, or
- -liostream from lgp271b.zip.
-
-
- Existing binaries from V1 can be used for other applications. V1
- programs cannot run V2 programs, but v2 programs can run v1 programs.
-
- You must also provide a DPMI environment. Look for CWSDPMI
- (csdpmi*.zip) at the beta or SimTel sites if you don't have DPMI
- already (it's in os2, nt, win3.1, qdpmi, 386max, etc).
-
- --- COPYRIGHT ---
-
- DJGPP V2 is Copyright (C) 1995 by DJ Delorie. Some parts of libc.a
- are Copyright (C) Regents of the University of California at Berkeley.
-
- GNU software (gcc, make, libg++, etc) is Copyright by the Free
- Software Foundation.
-
- DJGPP V2's copyright allows it to be used to produce commercial
- applications. However, if you include code or libraries that are not
- part of djgpp (like gnu's libg++) then you must comply with their
- copyrights.
-
-
- Enjoy!
-
-
- DJ Delorie
- dj@delorie.com
- http://www.delorie.com/
-